home *** CD-ROM | disk | FTP | other *** search
/ UnrealScript Game Programming All in One / UnrealScriptGameProgrammingAllInOne.iso / UGPAIOListings / UGPAIOListingsCh05 / HelloWorld / Classes / HelloWorld (1).uc next >
Encoding:
Text File  |  2006-01-08  |  217 b   |  16 lines

  1. %PARAMETERS = "HelloWorld C:UT2004"
  2.  
  3.  
  4.  
  5. class HelloWorld extends Commandlet;
  6.  
  7. function int Main(string Args)
  8. {
  9.   log("*************");
  10.   
  11.   log("Hello World!");
  12.   log("*************");
  13.  
  14.   return 0;     
  15. }
  16.